home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / STARTUP / StubExe32.dpr < prev    next >
Text File  |  1996-03-20  |  361b  |  18 lines

  1. program StubExe32;
  2. {$ifndef WIN32}
  3.   'This needs Delphi 32...'
  4. {$endif}
  5. {$AppType Console}
  6. uses
  7.   Forms,
  8.   StubExe32U in 'StubExe32U.pas' {Form1};
  9.  
  10. {$R *.RES}
  11. begin
  12.   WriteLn('APP: Beginning of project source');
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16.   WriteLn('APP: End of project source');
  17. end.
  18.